home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / tools.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-01  |  365 b   |  13 lines

  1. #ifndef __TOOLS_H
  2. #define __TOOLS_H
  3.  
  4. extern rect r_draw_size;
  5.  
  6. enum { TOOL_LINES = 1, TOOL_SCISSORS, TOOL_ERASER, TOOL_COLOR_ERASER,
  7.        TOOL_FILL, TOOL_RECTANGLE, TOOL_CIRCLE, TOOL_LINE, TOOL_PEN,
  8.        TOOL_TEXT, TOOL_MICRO, TOOL_SCROLL, TOOL_UNDO, TOOL_FILTER,
  9.        TOOL_DITHER, TOOL_LOCAL_UNDO };
  10.  
  11. extern char pattern[20][8];
  12.  
  13. #endif __TOOLS_H